Files
server/docker/docker-compose.yml

37 lines
615 B
YAML
Raw Normal View History

2017-08-04 12:21:13 -04:00
version: '3'
services:
mssql:
image: microsoft/mssql-server-linux
container_name: mssql
restart: always
ports:
- '1433:1433'
2017-08-07 17:08:41 -04:00
web:
image: bitwarden/web
container_name: web
restart: always
attachments:
image: bitwarden/attachments
container_name: attachments
restart: always
2017-08-04 12:21:13 -04:00
api:
2017-08-07 11:24:16 -04:00
image: bitwarden/api
2017-08-04 12:21:13 -04:00
container_name: api
restart: always
identity:
2017-08-07 11:24:16 -04:00
image: bitwarden/identity
2017-08-04 12:21:13 -04:00
container_name: identity
nginx:
2017-08-07 11:24:16 -04:00
image: bitwarden/nginx
2017-08-04 12:21:13 -04:00
container_name: nginx
restart: always
ports:
- '80:80'
- '443:443'