Advertisement
techblog

bitwarden

Feb 18th, 2020
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.51 KB | None | 0 0
  1.  bitwarden:
  2.     image: bitwardenrs/server:latest
  3.     container_name: bitwarden
  4.     restart: unless-stopped
  5.     # env_file: ./bitwarden/bitwarden.env
  6.     volumes:
  7.      - /etc/localtime:/etc/localtime:ro
  8.       - ./bitwarden/data:/data/:rw
  9.     networks:
  10.      - default
  11.       - proxy
  12.       - mysql
  13.     ports:
  14.      - 8778:1024
  15.     environment:
  16.      - PUID=${PUID}
  17.       - PGID=${PGID}
  18.       - TZ=${TZ}  
  19.       - WEBSOCKET_ENABLED=true
  20.       - ROCKET_PORT=1024
  21.     labels:
  22.      - com.ouroboros.enable=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement