created docker-compose
This commit is contained in:
parent
aaad00c9bf
commit
037d7050b3
1 changed files with 39 additions and 0 deletions
39
docker-compose.yml
Normal file
39
docker-compose.yml
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
birdsitelivenetwork:
|
||||||
|
external: false
|
||||||
|
|
||||||
|
services:
|
||||||
|
server:
|
||||||
|
image: nicolasconstant/birdsitelive:latest
|
||||||
|
restart: always
|
||||||
|
container_name: birdsitelive
|
||||||
|
environment:
|
||||||
|
- Instance:Domain=domain.name
|
||||||
|
- Instance:AdminEmail=name@domain.ext
|
||||||
|
- Db:Type=postgres
|
||||||
|
- Db:Host=db
|
||||||
|
- Db:Name=birdsitelive
|
||||||
|
- Db:User=birdsitelive
|
||||||
|
- Db:Password=birdsitelive
|
||||||
|
- Twitter:ConsumerKey=twitter.api.key
|
||||||
|
- Twitter:ConsumerSecret=twitter.api.key
|
||||||
|
networks:
|
||||||
|
- birdsitelivenetwork
|
||||||
|
ports:
|
||||||
|
- "5000:80"
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: postgres:9.6
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=birdsitelive
|
||||||
|
- POSTGRES_PASSWORD=birdsitelive
|
||||||
|
- POSTGRES_DB=birdsitelive
|
||||||
|
networks:
|
||||||
|
- birdsitelivenetwork
|
||||||
|
volumes:
|
||||||
|
- ./postgres:/var/lib/postgresql/data
|
Loading…
Add table
Reference in a new issue