mirror of
https://github.com/Kugelschieber/docker.git
synced 2026-01-18 06:40:26 +00:00
Added postgres, mysql and mailhog.
This commit is contained in:
14
postgres/docker-compose.yml
Normal file
14
postgres/docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user