initial commit
This commit is contained in:
commit
e206487577
4 changed files with 54 additions and 0 deletions
20
templates/docker-compose.yml.j2
Normal file
20
templates/docker-compose.yml.j2
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# {{ ansible_managed }}
|
||||
# commit: {{ lookup('pipe', 'git rev-parse --short HEAD') }}
|
||||
|
||||
version: '3.4'
|
||||
|
||||
services:
|
||||
|
||||
db:
|
||||
image: postgres:{{ postgres_version }}
|
||||
restart: always
|
||||
environment:
|
||||
POSTGRES_PASSWORD: {{ postgres_password }}
|
||||
volumes:
|
||||
- {{ postgres_data_folder }}:/var/lib/postgresql/data
|
||||
|
||||
adminer:
|
||||
image: adminer
|
||||
restart: always
|
||||
ports:
|
||||
- 8080:8080
|
||||
Loading…
Add table
Add a link
Reference in a new issue