mirror of
https://github.com/Kugelschieber/docker.git
synced 2026-01-18 06:40:26 +00:00
15 lines
267 B
YAML
15 lines
267 B
YAML
version: '2'
|
|
|
|
services:
|
|
mysql:
|
|
image: postgres:10
|
|
container_name: postgres
|
|
restart: always
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
volumes:
|
|
- /home/marvin/docker/postgres/data:/var/lib/postgresql/data
|
|
|