-
-
Save 0x6a68/db18068ca731b51a22673857b7d4002e to your computer and use it in GitHub Desktop.
Revisions
-
ahromis renamed this gist
Sep 21, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ahromis revised this gist
Jun 8, 2016 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,11 +29,11 @@ services: - postgres networks: gogs: driver: bridge volumes: db-data: driver: local gogs-data: driver: local -
ahromis revised this gist
Jun 8, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ services: networks: - gogs gogs: image: gogs/gogs:latest restart: always ports: - "10022:22" -
ahromis revised this gist
Jun 8, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,3 @@ ### Gogs docker-compose Run with `POSTGRES_USER=<your_db_user> POSTGRES_PASSWORD=<your_db_password> docker-compose up -d` -
ahromis revised this gist
May 16, 2016 . 2 changed files with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services: image: postgres:9.5 restart: always environment: - "POSTGRES_USER=${POSTGRES_USER}" - "POSTGRES_PASSWORD=${POSTGRES_PASSWORD}" - "POSTGRES_DB=gogs" volumes: This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,3 @@ ### Gogs docker-compose Run with `POSTGRES_USER=<your_db_user> POSTGRES_PASSWORD=<your_db_password> docker-comose up -d` -
ahromis revised this gist
May 16, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,7 +16,7 @@ services: restart: always ports: - "10022:22" - "3000:3000" links: - postgres environment: -
ahromis created this gist
May 16, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ version: '2' services: postgres: image: postgres:9.5 restart: always environment: - "POSTGRES_USER=postgres" - "POSTGRES_PASSWORD=${POSTGRES_PASSWORD}" - "POSTGRES_DB=gogs" volumes: - "db-data:/var/lib/postgresql/data" networks: - gogs gogs: image: gogs/gogs restart: always ports: - "10022:22" - "3000" links: - postgres environment: - "RUN_CROND=true" networks: - gogs volumes: - "gogs-data:/data" depends_on: - postgres networks: gogs: driver: bridge volumes: db-data: driver: local gogs-data: driver: local This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ ### Gogs docker-compose Run with `POSTGRES_PASSWORD=<your_password> docker-comose up -d`