You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- pgdata:/var/lib/postgresql/data # <- important! the `/var/lib/postgresql/data` mounting point for your container is where postgresql's default data location is!
redmine:
image: redmine:latest
ports:
- 127.0.0.1:8080:3000
volumes:
- redmine:/usr
environment:
REDMINE_DB_POSTGRES: db
REDMINE_DB_DATABASE: 'redmine'
REDMINE_DB_USER: 'redmine'
REDMINE_DB_PASSWORD: 'redminepass'
web:
image: reports:latest
ports:
- 127.0.0.1:8000:8000
volumes:
- .:/code/ # <- the first "." is the local directory that will be mounted to the location defined after the ":" (/svr/)