-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust how we build and start container services together
- they need to be started via docker-compose which by default puts them on the same network and they are accessible to one another! - also create a superuser in the DB. There is no valid password so this account can't login
- Loading branch information
Showing
2 changed files
with
20 additions
and
15 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: '2' | ||
|
||
services: | ||
krb5_kiwitcms_org: | ||
container_name: krb5_kiwitcms_org | ||
image: kiwitcms/kerberos | ||
restart: always | ||
|
||
web_kiwitcms_org: | ||
container_name: web_kiwitcms_org | ||
image: kiwitcms/with-kerberos | ||
restart: always |