1
0
Fork 0
Docker Compose files for Thulium
Go to file
Jonathan Chan 63ee001ec7 Add hostname to get rid of Apache Server_Name warning. 2022-02-19 22:38:02 +01:00
freshrss Add FreshRSS (replace TTRSS). 2021-10-23 07:23:40 +02:00
gitea No longer building Gitea image from local Dockerfile. I don't remember why I was doing that in the first place. 2020-04-09 17:09:00 -07:00
nextcloud Add hostname to get rid of Apache Server_Name warning. 2022-02-19 22:38:02 +01:00
.gitignore Add FreshRSS (replace TTRSS). 2021-10-23 07:23:40 +02:00
README.md Create README.md 2019-06-14 23:07:53 -07:00

README.md

Template

version: "3"

services:
  example:
    image: author/example:tag
    container_name: example
    restart: always
    environment:
      - ENV_VAR=value
    ports:
      - 8000:80
    volumes:
      - /unnamed/volume/will/be/created
      - myvolume:/var/www/html
      - /srv/data/host/location:/srv/data
    networks:
      - mynetwork
    depends_on:
      - db
  db:
    image: postgres
    container_name: example-db
    restart: always
    expose:
      - 5432
    volumes:
      - example-db:/var/lib/postgresql/9.3./main
      
networks:
  mynetwork:

volumes:
  myvolume:
  example-db: