Last active
June 11, 2024 04:56
-
-
Save mcasperson/809c65897a9a9ee4b6477ec3e9ffa6b8 to your computer and use it in GitHub Desktop.
Octopus Linux Docker Compose
This file contains 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 characters
services: | |
octopus: | |
privileged: true | |
ports: | |
- "8080:8080" | |
- "10943:10943" | |
environment: | |
ADMIN_API_KEY: API-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | |
ADMIN_USERNAME: admin | |
ADMIN_EMAIL: [email protected] | |
ADMIN_PASSWORD: Password01! | |
ACCEPT_EULA: !!str "Y" | |
DB_CONNECTION_STRING: Server=mssql,1433;Database=Octopus;User Id=SA;Password=Password01!;ConnectRetryCount=6 | |
CONNSTRING: Server=mssql,1433;Database=Octopus;User Id=SA;Password=Password01!;ConnectRetryCount=6 | |
MASTER_KEY: 6EdU6IWsCtMEwk0kPKflQQ== | |
image: octopusdeploy/octopusdeploy:latest | |
depends_on: | |
- mssql | |
mssql: | |
environment: | |
ACCEPT_EULA: Y | |
SA_PASSWORD: Password01! | |
MSSQL_PID: Express | |
image: mcr.microsoft.com/mssql/server:2022-latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment