mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2024-11-07 08:34:00 +01:00
ba2b49339f
* Postgres 9.6 -> 10.2 * Nginx 1.11 -> 1.13
23 lines
434 B
YAML
23 lines
434 B
YAML
version: '3'
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
args:
|
|
- BRANCH=${BRANCH-master}
|
|
image: ninech/netbox:${BRANCH-latest}
|
|
depends_on:
|
|
- postgres
|
|
env_file: netbox.env
|
|
command:
|
|
- ./manage.py
|
|
- test
|
|
postgres:
|
|
image: postgres:10.2-alpine
|
|
env_file: postgres.env
|
|
volumes:
|
|
netbox-static-files:
|
|
driver: local
|
|
netbox-nginx-config:
|
|
driver: local
|