Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit e00d0169 authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

add docker-compose example

parent 9858eee2
No related branches found
No related tags found
No related merge requests found
......@@ -47,4 +47,21 @@ Then start the docker as:
docker run --name smp --rm -it -p 8080:8080 -v - db-scripts:/tmp/custom-data/ edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/smp-sml-tomcat-mysql:5.0-SNAPSHOT
# Start with the docker compose file
Create a docker compose file: docker-compose.yml
with the following content:
```
version: "3.0"
services:
tomcat-mysql-sml:
image: edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/smp-sml-tomcat-mysql:5.0-SNAPSHOT
ports:
- "3316:3306"
- "8180:8080"
```
and start the container service
docker compose up
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment